home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xfd / makefile < prev    next >
Encoding:
Makefile  |  1994-08-12  |  483 b   |  36 lines

  1. #
  2. # QOS Makefile for DJGPP.
  3. #
  4.  
  5. CFLAGS= -O -c -DMSDOS
  6.  
  7. all: makefile.tag xfd.exe ~\app-defa\xfd.res
  8.  
  9. O =    xfd.o \
  10.     fontgrid.o
  11.  
  12. .c.o:
  13.     gcc $(CFLAGS) $<
  14.  
  15. L = -lxaw -lxmu -lxt -lxext -lx11 -lsys
  16.  
  17. xfd.exe : makefile.tag  $(O)
  18.     gcc -o xfd $(O) $(L)
  19.     strip xfd
  20.     coff2exe xfd
  21.     del xfd
  22.  
  23. ~\app-defa\xfd.res:    xfd.ad
  24.     copy xfd.ad ~\app-defa\xfd.res
  25.  
  26. makefile.tag:
  27.     del *.tag
  28.     del *.obj
  29.     del *.o
  30.     del *.map
  31.     del *.exp
  32.     del *.exe
  33.     del *.rsp
  34.     echo >makefile.tag
  35.  
  36.